*{
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    transition: all .75s ease;
    font-family: "Bangers", system-ui;
    user-select: none;
}
body{
    height: 100vh;
}
.shop-head{
    width: 100%;
    height: 13%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
}
.shop-head h1{
    letter-spacing: 4px;
    font-size: 50px;
}
.shop-head p{
    font-size:12px ;
    position: absolute;
    translate: 0 -30px;
    font-family: "Righteous", system-ui;
}
.shop-head button{
    position: absolute;
    right: 3%;
    padding: 2px 7px;
    background: none;
    border: 2px black solid;
    border-radius: 16px;
    box-shadow: -1px 1px 0 rgba(0, 0, 0, 0.233);
    transform: scale(1.2);
    cursor: pointer;
    transition: .3s;
}
.shop-head button:hover{
    transform: scale(1.3);
}
.ad-section{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 85%;
}
.ad-filde{
    border: 2px solid black;
    align-self: flex-start;
    width: 80%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ad-img{
    width: 55%;

}